// Lang_03 [if statement].nova // The application class. class IfStatementApp { // Application class's "main" function. public static void main( String[] args ) { // An if statement with a single statement. if ( true ) Stream.writeLine( "Condition true." ); // An if-else statement with two single statements. if ( false ) Stream.writeLine( "Condition true." ); else Stream.writeLine( "Condition false." ); // An if-else statement with two small blocks of code. if ( true ) { Stream.writeLine( "Condition true." ); } else { Stream.writeLine( "Condition false." ); } } }